home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _E6798C14C3074C2B998C5B091BE1A973 < prev    next >
Encoding:
Text File  |  2000-03-27  |  395 b   |  19 lines

  1. // The handy dandy moving subway train script
  2.  
  3. #include "../common/header.ds"
  4.  
  5. output "p:/base/ds/common"
  6.  
  7. // declare the variables
  8.  
  9. parameter entity train //which train to move
  10. parameter vector move //how far the train should move
  11. local int sig = 0
  12.  
  13. // move the trains
  14.  
  15. move entity train by move signaling sig
  16. wait for all signaling sig
  17.  
  18. //This is a very stupid piece of crap
  19.